<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*"/>
<xsl:output method="xml" encoding="ISO-8859-1" indent="yes"/>

    <xsl:template match="/">
        <xsl:apply-templates/>
    </xsl:template>

    <xsl:template match="PLANETES">
        <xsl:apply-templates/>
    </xsl:template>
  
    <xsl:template match="PLANETE">
       <xsl:copy>
          <xsl:apply-templates/>
       </xsl:copy>
    </xsl:template>
    
    <xsl:template match="NOM">
       <xsl:copy>
          <xsl:apply-templates/>
       </xsl:copy>
   </xsl:template>
    
    <xsl:template match="MASSE">
        <xsl:copy>
        <xsl:value-of select="."/>
        <xsl:value-of select="@UNITE"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="RAYON">
    </xsl:template>

    <xsl:template match="JOUR">
    </xsl:template>

    <xsl:template match="DENSITE">
    </xsl:template>

    <xsl:template match="DISTANCE">
    </xsl:template>

</xsl:stylesheet>
